home *** CD-ROM | disk | FTP | other *** search
- echo off
- :start
- echo ----------------------------------------
- echo Do you wish to select the PC Globe Demo?
- echo ----------------------------------------
- echo Valid Choices:
- echo Y -- to select the PC Globe Demo
- echo N -- to select the PC USA Demo
- echo ----------------------------------------
- yes_no Enter Choice
- if not errorlevel 1 goto usa
- :globe
- pcgdemo
- if errorlevel 12 goto outofm
- if errorlevel 0 goto succ
- goto exit
- :succ
- type pcgexit.txt
- goto exit
- :outofm
- type pcgerror.txt
- goto exit
- :usa
- usademo
- if errorlevel 12 goto outofmemory
- if errorlevel 0 goto success
- goto exit
- :success
- type exit.txt
- goto exit
- :outofmemory
- type error.txt
- :exit
-